home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / tr.dir / 00002_StartUp script.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  12.4 KB  |  380 lines

  1. global gTRHelpUp
  2.  
  3. on startMovie
  4.   global gzTRBalloonObj, gcTRBAL_CH1, gHSState, gTRInitState, gSIUserName, gTREndGame, gTRNewGame, gzTRAllTimeHighs, gzTRPersBestScores, gTRInitialPopCount
  5.   set gTRInitialPopCount to 0
  6.   set gTRNewGame to 0
  7.   if value(HSStateGet("tr", "not1stTime")) then
  8.     set gTRHelpUp to 0
  9.   else
  10.     set gTRHelpUp to 1
  11.     duplicate(cast 97, 98)
  12.   end if
  13.   go("BeginHead2Head")
  14.   set the text of cast "P1LogIn" to gSIUserName
  15.   set the text of cast "P2LogIn" to "Player2"
  16.   InitPlayerScoreFields()
  17.   if the soundEnabled then
  18.     updateStage()
  19.   end if
  20.   if not gTRInitState then
  21.     FirstTimeInit()
  22.     set gTRInitState to 1
  23.     set gzTRAllTimeHighs to GSStateGet("tr2", "ChampInfo")
  24.     if not listp(gzTRAllTimeHighs) then
  25.       set gzTRAllTimeHighs to [:]
  26.     end if
  27.     set gzTRPersBestScores to HSStateGet("tr2", "PersBest")
  28.     if not listp(gzTRPersBestScores) then
  29.       set gzTRPersBestScores to []
  30.     end if
  31.     if gTRHelpUp = 0 then
  32.       set vP1 to HSStateGet("tr", "P1Obj")
  33.       SetPlayerProps(1, vP1)
  34.       set vP2 to HSStateGet("tr", "P2Obj")
  35.       SetPlayerProps(2, vP2)
  36.       MakeChampList()
  37.       MakePersBestList()
  38.       ResetPlayerScores()
  39.     end if
  40.   else
  41.     GetHistState()
  42.     repeat with vI = 1 to 30
  43.       set vNum to mGetMyCastNum(getAt(gzTRBalloonObj, vI))
  44.       set the castNum of sprite (vI + gcTRBAL_CH1 - 1) to cast vNum
  45.       set the visible of sprite (vI + gcTRBAL_CH1 - 1) to 1
  46.       puppetSprite(vI + gcTRBAL_CH1 - 1, 1)
  47.       updateStage()
  48.     end repeat
  49.   end if
  50.   if gTREndGame then
  51.     go("StopGame")
  52.   end if
  53.   puppetSound(0)
  54.   DisplayPuzzlePcs()
  55. end
  56.  
  57. on FirstTimeInit
  58.   global gcTRROVER, gcTRKNOT1CH, gcTRKNOT2CH, gcTRBAL_CH1, gcTR_BLUE, gcTR_RED, gcTR_GREEN, gcTR_YELLOW, gcTR_ORG, gcTR_PINK, gcTRTURNDARTCH, gcTRSCOREBRD_CH, gcTRPLYR1SCORECH, gcTRPLYR2SCORECH, gcTRCATCHAN, gcTRPUZZLECH, gzTRRandCat, gzTR_ActiveQuestArray, gzTR_BeenSelected, gzTRBalloonObj, gzTRPlayerObj, gzTRCatNums, gzTRAllTimeHighs, gzTRPersBestScores, gTROutsideMenu, gTRGameObj, gTR_BalloonNumJustHit, gSIUserName, gTREndThisGame
  59.   set gcTRPUZZLECH to 43
  60.   set gcTRKNOT1CH to 43
  61.   set gcTRKNOT2CH to 44
  62.   set gcTRCATCHAN to 2
  63.   set gcTRROVER to 48
  64.   set gcTRPLYR1SCORECH to 40
  65.   set gcTRPLYR2SCORECH to 41
  66.   set gcTRTURNDARTCH to 39
  67.   set gcTRSCOREBRD_CH to 38
  68.   set gcTRBAL_CH1 to 8
  69.   set gcTR_BLUE to 2
  70.   set gcTR_RED to 3
  71.   set gcTR_GREEN to 4
  72.   set gcTR_YELLOW to 5
  73.   set gcTR_ORG to 6
  74.   set gcTR_PINK to 7
  75.   set gTROutsideMenu to 1
  76.   set gTREndGame to 0
  77.   set gTREndThisGame to 0
  78.   set gzTRCatagory to list()
  79.   set gzTRRandCat to list()
  80.   set gzTRBalloonObj to list()
  81.   set gzTR_ActiveQuestArray to list("Q", "A", "A", "A", "2", "A")
  82.   set gzTR_BeenSelected to list()
  83.   set gzTRPlayerObj to list()
  84.   set gzTRCatNums to list()
  85.   set gzTRAllTimeHighs to [:]
  86.   set gzTRPersBestScores to list()
  87.   set gTR_BalloonNumJustHit to 0
  88.   if gSIUserName = EMPTY then
  89.     set gSIUserName to "Johnny B. Good"
  90.   end if
  91.   puppetSprite(gcTRTURNDARTCH, 1)
  92.   puppetSprite(gcTRROVER, 1)
  93.   puppetSprite(gcTRSCOREBRD_CH, 1)
  94.   puppetSprite(gcTRPLYR1SCORECH, 1)
  95.   puppetSprite(gcTRPLYR2SCORECH, 1)
  96.   RandomizeCatagories()
  97.   InitGameObject()
  98.   mSetWhosTurn(gTRGameObj, 1)
  99.   mSetPlayMode(gTRGameObj, 2)
  100.   mSetCatagories(gTRGameObj, gzTRRandCat)
  101.   repeat with vIndex = 1 to 30
  102.     addAt(gzTRBalloonObj, vIndex, birth(script "BalloonParentObject"))
  103.   end repeat
  104.   InitBalloonObjects()
  105.   repeat with vI = gcTRCATCHAN to gcTRCATCHAN + 5
  106.     puppetSprite(vI, 1)
  107.   end repeat
  108.   repeat with vIndex = gcTRBAL_CH1 to gcTRBAL_CH1 + 29
  109.     puppetSprite(vIndex, 1)
  110.     set the visible of sprite vIndex to 1
  111.   end repeat
  112.   InitQuestionFields()
  113.   InitPlayerObjects()
  114.   InitPlayerScoreFields()
  115.   set the trails of sprite gcTRROVER to 1
  116.   set the ink of sprite gcTRROVER to 36
  117.   DoublePlayerGame()
  118.   DoDoubleValues()
  119.   PlaceTurnDart()
  120.   AssignQuestionsToBalloons()
  121.   ShowCatagories()
  122.   puppetSprite(45, 1)
  123.   set the visible of sprite 45 to 0
  124.   set the castNum of sprite 45 to cast "NewGameTwoOff"
  125. end
  126.  
  127. on stopMovie
  128.   DisableIdleAnim()
  129.   SaveHistState()
  130.   repeat with vIndex = 1 to 48
  131.     set isPuppet to the puppet of sprite vIndex
  132.     if isPuppet = 1 then
  133.       puppetSprite(vIndex, 0)
  134.     end if
  135.   end repeat
  136. end
  137.  
  138. on InitQuestionFields
  139.   repeat with X in ["QuestionField", "AnswerField1", "AnswerField2", "AnswerField3", "TheAnswerText"]
  140.     set the text of cast X to "a"
  141.     set the textFont of cast X to "Geneva"
  142.     set the textStyle of cast X to "Plain"
  143.     set the textSize of cast X to 12
  144.   end repeat
  145. end
  146.  
  147. on StartNewGame
  148.   global gcTRPLYR1SCORECH, gcTRPLYR2SCORECH, gcTRROVER, gcTRBAL_CH1, gzTRPlayerObj, gTRGameObj, gcTRTURNDARTCH, gTREndGame, gTRNewGame, gTRInitialPopCount
  149.   set gTRNewGame to 1
  150.   set the text of cast "Player1Score" to "0"
  151.   set the text of cast "Player2Score" to "0"
  152.   SetScoreAttribs()
  153.   HSStatePut("tr", "not1stTime", "1")
  154.   set gTRHelpUp to 0
  155.   duplicate(cast 99, 98)
  156.   puppetSprite(gcTRTURNDARTCH, 1)
  157.   set the visible of sprite gcTRTURNDARTCH to 0
  158.   updateStage()
  159.   updateStage()
  160.   repeat while soundBusy(1)
  161.     nothing()
  162.   end repeat
  163.   puppetSound(0)
  164.   KillAllBalloons()
  165.   mSetWhosTurn(gTRGameObj, 1)
  166.   if gTREndGame = 1 then
  167.     go("StopGame")
  168.   else
  169.     RandomizeCatagories()
  170.     AssignQuestionsToBalloons()
  171.     ShowCatagories()
  172.     mSetPopCount(gTRGameObj, gTRInitialPopCount)
  173.     puppetSprite(gcTRTURNDARTCH, 1)
  174.     puppetSprite(gcTRROVER, 1)
  175.     puppetSprite(gcTRSCOREBRD_CH, 1)
  176.     set the visible of sprite 45 to 0
  177.     set the visible of sprite 47 to 1
  178.     set the castNum of sprite 45 to cast "NewGameTwoOff"
  179.     go("BeginHead2Head")
  180.     TurnOnScoreBoards()
  181.     set the visible of sprite gcTRPLYR1SCORECH to 0
  182.     set the visible of sprite gcTRPLYR2SCORECH to 0
  183.     set the visible of sprite gcTRROVER to 0
  184.     set the trails of sprite gcTRROVER to 0
  185.     set the locH of sprite gcTRROVER to -10
  186.     set the locV of sprite gcTRROVER to -10
  187.     InitQuestionFields()
  188.     ShowAllBalloons()
  189.     InitBalloonObjsForNewGame()
  190.     if mGetPlayMode(gTRGameObj) = 1 then
  191.       SinglePlayerGame()
  192.     else
  193.       DoublePlayerGame()
  194.     end if
  195.     DoDoubleValues()
  196.     MakeChampList()
  197.     MakePersBestList()
  198.     SetPlayerScores()
  199.     mSetBeatHighScore(getAt(gzTRPlayerObj, 1), 0)
  200.     mSetBeatHighScore(getAt(gzTRPlayerObj, 2), 0)
  201.   end if
  202.   DisplayPuzzlePcs()
  203.   set gTRNewGame to 0
  204. end
  205.  
  206. on InitPlayerScoreFields
  207.   set the text of field "Player1Score" to "0"
  208.   set the text of field "Player2Score" to "0"
  209.   SetScoreAttribs()
  210.   set the text of cast "ChampionListATBleft" to " "
  211.   set the text of cast "ChampionListATBright" to " "
  212.   set the text of cast "PersonalBestLeft" to " "
  213.   set the text of cast "PersonalBestright" to " "
  214.   SetChampsAttribs()
  215.   SetQaWindowAttribs()
  216.   updateStage()
  217. end
  218.  
  219. on cleanUp
  220.   SaveHistState()
  221.   repeat with vIndex = 1 to 48
  222.     set isPuppet to the puppet of sprite vIndex
  223.     if isPuppet = 1 then
  224.       puppetSprite(vIndex, 0)
  225.     end if
  226.   end repeat
  227.   set the soundEnabled to 1
  228. end
  229.  
  230. on SaveHistState
  231.   global gTRGameObj, gzTRPlayerObj, gzTRBalloonObj, gzTRAllTimeHighs, gzTRPersBestScores
  232.   set vObjProps to EMPTY
  233.   set vObjProps to GetGameProps()
  234.   HSStatePut("tr", "GameObj", vObjProps)
  235.   set vObjProps to EMPTY
  236.   set vObjProps to GetPlayerProps(1)
  237.   HSStatePut("tr", "P1Obj", vObjProps)
  238.   set vObjProps to EMPTY
  239.   set vObjProps to GetPlayerProps(2)
  240.   HSStatePut("tr", "P2Obj", vObjProps)
  241.   set vObjProps to EMPTY
  242.   repeat with vI = 1 to 30
  243.     set vObjProps to GetBalloonProps(vI)
  244.     HSStatePut("tr", "Bal" & vI, vObjProps)
  245.   end repeat
  246.   set vTempHighs to value(string(gzTRAllTimeHighs))
  247.   GSStatePut("tr2", "ChampInfo", vTempHighs)
  248.   set vTempPersBest to value(string(gzTRPersBestScores))
  249.   HSStatePut("tr2", "PersBest", vTempPersBest)
  250.   set vNumPzlPcs to GetNumPuzzlePcs()
  251.   HSStatePut("tr2", "NumPzlPcs", vNumPzlPcs)
  252. end
  253.  
  254. on GetHistState
  255.   global gTRGameObj, gcTRTURNDARTCH, gzTRPlayerObj, gcTRROVER, gzTRBalloonObj, gcTRSCOREBRD_CH, gcTRPLYR1SCORECH, gcTRPLYR2SCORECH, gzTRRandCat, gzTRAllTimeHighs, gzTRPersBestScores
  256.   puppetSprite(gcTRTURNDARTCH, 1)
  257.   set the visible of sprite gcTRTURNDARTCH to 0
  258.   updateStage()
  259.   puppetSprite(gcTRROVER, 1)
  260.   puppetSprite(gcTRSCOREBRD_CH, 1)
  261.   set vTemp to HSStateGet("tr", "GameObj")
  262.   if vTemp = EMPTY then
  263.     InitGameObject()
  264.     SetGameProps(vTemp)
  265.   end if
  266.   set vP1 to HSStateGet("tr", "P1Obj")
  267.   if vP1 = EMPTY then
  268.     InitPlayerObjects()
  269.   else
  270.     SetPlayerProps(1, vP1)
  271.     set vP2 to HSStateGet("tr", "P2Obj")
  272.     SetPlayerProps(2, vP2)
  273.   end if
  274.   SetPlayerScores()
  275.   set the text of cast "Player1Score" to string(mGetMyCurrentScore(getAt(gzTRPlayerObj, 1)))
  276.   set the text of cast "Player2Score" to string(mGetMyCurrentScore(getAt(gzTRPlayerObj, 2)))
  277.   SetScoreAttribs()
  278.   set vPlayMode to mGetPlayMode(gTRGameObj)
  279.   if vPlayMode = 1 then
  280.     set the castNum of sprite gcTRSCOREBRD_CH to the number of cast "SinglePlayerScoreBoard"
  281.     set the locH of sprite gcTRSCOREBRD_CH to 320
  282.     set the locV of sprite gcTRSCOREBRD_CH to 446
  283.     set the visible of sprite gcTRSCOREBRD_CH to 1
  284.     puppetSprite(gcTRSCOREBRD_CH, 1)
  285.     updateStage()
  286.   else
  287.     set the castNum of sprite gcTRSCOREBRD_CH to the number of cast "DoublePlayerScoreBoard"
  288.     set the locH of sprite gcTRSCOREBRD_CH to 316
  289.     set the locV of sprite gcTRSCOREBRD_CH to 446
  290.     set the visible of sprite gcTRSCOREBRD_CH to 1
  291.     puppetSprite(gcTRSCOREBRD_CH, 1)
  292.     updateStage()
  293.   end if
  294.   PlaceTurnDart()
  295.   set vbal1 to HSStateGet("tr", "bal1")
  296.   if vbal1 <> EMPTY then
  297.     repeat with vI = 1 to 30
  298.       set vTemp to HSStateGet("tr", "Bal" & vI)
  299.       SetBalloonProps(vI, vTemp)
  300.     end repeat
  301.   else
  302.     repeat with vIndex = 1 to 30
  303.       addAt(gzTRBalloonObj, vIndex, birth(script "BalloonParentObject"))
  304.     end repeat
  305.     InitBalloonObjects()
  306.   end if
  307.   ShowCatagories()
  308.   set gzTRAllTimeHighs to GSStateGet("tr2", "ChampInfo")
  309.   if not listp(gzTRAllTimeHighs) then
  310.     set gzTRAllTimeHighs to [:]
  311.   end if
  312.   set gzTRPersBestScores to HSStateGet("tr2", "PersBest")
  313.   if not listp(gzTRPersBestScores) then
  314.     set gzTRPersBestScores to []
  315.   end if
  316. end
  317.  
  318. on keyDown
  319.   if the keyCode = 122 then
  320.     LaunchHelp()
  321.   end if
  322. end
  323.  
  324. on SetScoreAttribs
  325.   set the textFont of field "Player1Score" to "Geneva"
  326.   set the textStyle of field "Player1Score" to "Outline"
  327.   set the textSize of field "Player1Score" to 14
  328.   set the textAlign of field "Player1Score" to "Center"
  329.   set the foreColor of cast "Player1Score" to 0
  330.   set the backColor of cast "Player1Score" to 255
  331.   set the textFont of field "Player2Score" to "Geneva"
  332.   set the textStyle of field "Player2Score" to "Outline"
  333.   set the textSize of field "Player2Score" to 14
  334.   set the textAlign of field "Player2Score" to "Center"
  335.   set the foreColor of cast "Player2Score" to 0
  336.   set the backColor of cast "Player2Score" to 255
  337.   updateStage()
  338. end
  339.  
  340. on SetChampsAttribs
  341.   set the foreColor of cast "ChampionListATBleft" to 0
  342.   set the backColor of cast "ChampionListATBleft" to 255
  343.   set the textFont of cast "ChampionListATBleft" to "Geneva"
  344.   set the textSize of cast "ChampionListATBleft" to 10
  345.   set the textAlign of cast "ChampionListATBleft" to "Left"
  346.   set the foreColor of cast "ChampionListATBright" to 0
  347.   set the backColor of cast "ChampionListATBright" to 255
  348.   set the textFont of cast "ChampionListATBright" to "Geneva"
  349.   set the textSize of cast "ChampionListATBright" to 10
  350.   set the textAlign of cast "ChampionListATBright" to "Left"
  351.   set the foreColor of cast "PersonalBestLeft" to 0
  352.   set the backColor of cast "PersonalBestLeft" to 255
  353.   set the textFont of cast "PersonalBestLeft" to "Geneva"
  354.   set the textSize of cast "PersonalBestLeft" to 10
  355.   set the textAlign of cast "PersonalBestLeft" to "Left"
  356.   set the foreColor of cast "PersonalBestright" to 0
  357.   set the backColor of cast "PersonalBestright" to 255
  358.   set the textFont of cast "PersonalBestright" to "Geneva"
  359.   set the textSize of cast "PersonalBestright" to 10
  360.   set the textAlign of cast "PersonalBestright" to "Left"
  361.   updateStage()
  362. end
  363.  
  364. on SetQaWindowAttribs
  365.   set the textFont of field "ActiveQuestion" to "Geneva"
  366.   set the textFont of field "ActiveAnswer1" to "Geneva"
  367.   set the textFont of field "ActiveAnswer2" to "Geneva"
  368.   set the textFont of field "ActiveAnswer3" to "Geneva"
  369.   repeat with I in ["QuestionField", "AnswerField1", "AnswerField2", "AnswerField3", "TheAnswerText"]
  370.     set the text of field I to "a"
  371.     set the foreColor of cast I to 0
  372.     set the backColor of cast I to 255
  373.   end repeat
  374.   set the textSize of field "ActiveQuestion" to 12
  375.   set the textSize of field "ActiveAnswer1" to 12
  376.   set the textSize of field "ActiveAnswer2" to 12
  377.   set the textSize of field "ActiveAnswer3" to 12
  378.   updateStage()
  379. end
  380.